home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
xlib
/
xlib06
/
xline.h
< prev
next >
Wrap
C/C++ Source or Header
|
1993-09-12
|
1KB
|
47 lines
/*-----------------------------------------------------------------------
;
; XLINE - header file
;
;
;
; ****** XLIB - Mode X graphics library ****************
; ****** ****************
; ****** Written By Themie Gouthas ****************
;
; egg@dstos3.dsto.gov.au
; teg@bart.dsto.gov.au
;
; Terminology & notes:
; VRAM == Video RAM
; SRAM == System RAM
; X coordinates are in pixels unless explicitly stated
;
;----------------------------------------------------------------------*/
#ifndef _XLINE_H_
#define _XLINE_H_
/* FUNCTIONS =========================================================== */
#ifdef __cplusplus
extern "C" {
#endif
extern void x_line( /* Draw a line, what else */
WORD x0,
WORD y0,
WORD x1,
WORD y1,
WORD color,
WORD PageBase);
#ifdef __cplusplus
}
#endif
#endif